home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
hypercrd
/
hc2_x
/
tcprogud.sit
/
picture ƒ
/
class.c
< prev
next >
Wrap
Text File
|
1990-09-06
|
596b
|
27 lines
/*
* FILE: class.c
* AUTHOR: R.G.
* CREATED: June 25, 1990
*
* define generic class methods
*/
# include "class.h"
/******************************************************************
* define generic init() method
******************************************************************/
boolean Generic_Class::init(void)
{
return TRUE;
}
/******************************************************************
* define generic destroy() method
******************************************************************/
boolean Generic_Class::destroy(void)
{
return TRUE;
}